home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2007 December
/
PCWorld_2007-12_cd.bin
/
domacnost a kancelar
/
autoit
/
autoit-v3-setup.exe
/
Examples
/
Helpfile
/
_SQLite_ErrMsg.au3
< prev
next >
Wrap
Text File
|
2007-09-08
|
323b
|
9 lines
#include <SQLite.au3>
#include <SQLite.dll.au3>
_SQLite_Startup()
_SQLite_Open()
If $SQLITE_OK <> _SQLite_Exec(-1,"CREATE TABLE test ('a', 'b);") Then _ ; a Quote is missing
MsgBox(0,"SQLite Error","Error Code: " & _SQLite_ErrCode() & @CR & "Error Message: " & _SQLite_ErrMsg())
_SQLite_Close()
_SQLite_Shutdown()